@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Space+Grotesk:wght@500&display=swap');

html{
    width: 100vw;
    height: 100vh;
}

body{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffd30d;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

#box {
    width: 400px;
    height: 580px;
    background-color: rgb(68, 68, 68);
    transition: 0.5s ease;
    border-radius: 5px;
    text-align: center;
    justify-content: center;
}

#h-one{
    font-size: 32px;
    color: rgb(0, 0, 0);
    transition: 0.5s ease;
    padding: 20px;
}

.transition{
    transition: all 0.5s ease;
}

.dp2{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    position: absolute;
    left: 50px;
    top: 20px;
}
  
main{
    height: calc(100%-150px);
}

header{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 150px;
    background-color: #020202;
    text-align: center;
    margin-bottom: 50px;
}  

header h1{
    color: aliceblue;
}

section{
    margin-top: 200px;
    overflow-y: scroll;
}

button {
    background-color: #070707;
    height: 105px; 
    width: 450px; 
    right: 25px; 
    top: 65px;
    border: 3px solid black;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 40px;
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    margin-top: 20px;
    transition: .5s ease;
}


.left  img{
    height: 350px;
    width: 300px;
    margin: 0;
}

.split {
    height: 100%;
    width: 50%;
    position: absolute;
    top: 0;
    padding-top: 20px;
    overflow-y: scroll; /* Enable vertical scroll */
    margin-top: 150px;
}
  
.left {
    left: 0;
    background-color: #111;
    overflow-y: scroll;
    font-size: 25px;
    margin: 0px;
    padding:0px;
    margin-top: 150px;
    height: 100%;
}

.right {
    right: 0;
    background-color: #ffa31a;
    overflow-y: scroll;
    font-size: 25px;
    margin: 0px;
    padding: 0px;
    margin-top: 150px;
    height: 100%;
}

.leftbox{
    padding: 50px;
}

.rightbox{
    padding: 50px;
}


.split::-webkit-scrollbar {
    width: 8px;
}
  
.split::-webkit-scrollbar-thumb {
    background-color: rgba(243, 243, 243, 0.329);
}

input:nth-of-type(1){
    height: 50px;
    border-radius: 10px;
    width: 440px;
}

input{
    margin-top: 50px;
}

